* eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 16 Apr 2011 21:50:01 +0000 (14:50 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 16 Apr 2011 21:50:01 +0000 (14:50 -0700)
src/ChangeLog
src/eval.c

index 48e008a9aac092e20792cfe33999363d664ee6a2..1271df91fcac232ae8b9b9d54f5921207851d93b 100644 (file)
@@ -1,5 +1,7 @@
 2011-04-16  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
+
        * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
 
        * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
index c068f5f3fbf94efb7e1730681d9c573d0274cb22..b843ca5b2ecb0469ed8fa66fa9dab8f91669849c 100644 (file)
@@ -20,6 +20,7 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <config.h>
 #include <limits.h>
 #include <setjmp.h>
+#include <stdio.h>
 #include "lisp.h"
 #include "blockinput.h"
 #include "commands.h"